home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / pct_4c.arc / PCT3.ARC / MOVEM.BAT < prev    next >
DOS Batch File  |  1991-01-08  |  785b  |  34 lines

  1. echo off
  2. cls
  3.  
  4. copy __TEMP+pctype.pro pct.pro
  5. erase __TEMP
  6. erase pctype.pro
  7. rename pct.pro pctype.pro
  8.  
  9. if .%1 == . goto EXIT
  10.  
  11. copy pct.exe %1
  12. copy pclabel.exe %1
  13. copy pcg2.exe %1
  14. copy pctype.pro %1
  15. copy pct.hlp %1
  16. copy desc.exe %1
  17. copy msherc.com %1
  18. copy psfonts.lst %1
  19. copy pcgg.exe %1
  20. copy index.exe %1
  21.  
  22. if exist %1\pct.exe         erase pct.exe
  23. if exist %1\pclabel.exe     erase pclabel.exe
  24. if exist %1\pcg2.exe        erase pcg2.exe
  25. if exist %1\pctype.pro      erase pctype.pro
  26. if exist %1\pct.hlp         erase pct.hlp
  27. if exist %1\desc.exe        erase desc.exe
  28. if exist %1\msherc.com      erase msherc.com
  29. if exist %1\psfonts.lst     erase psfonts.lst
  30. if exist %1\pcgg.exe        erase pcgg.exe
  31. if exist %1\index.exe       erase index.exe
  32.  
  33. :EXIT
  34.